//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Music
{
/// Type of band.
public enum InstrumentGroupMelodic {
/// Type of voice.
[UsedImplicitly] None = 0,
/// Type of voice.
[UsedImplicitly] Keyboards = 1, //// Or Pianos + Organs
/// Type of voice.
[UsedImplicitly] Strings = 2,
/// Type of voice.
[UsedImplicitly] Woodwind = 3,
/// Type of voice.
[UsedImplicitly] Brass = 4,
/// Type of voice.
[UsedImplicitly] Guitars = 5,
/// Type of voice.
[UsedImplicitly] Vocal = 6,
/// Type of voice.
[UsedImplicitly] Synthetic = 7,
/// Type of voice.
[UsedImplicitly] MelodicDrums = 8,
}
}